5785053e1bc64b696696a3bec8c757036681768f,portal-impl/src/com/liferay/portal/lar/PortletImporter.java,PortletImporter,importAssetCategory,#PortletDataContext#Map#Map#Map#Element#AssetCategory#,628
Before Change
assetVocabularyId, properties, serviceContext);
}
else {
_log.error("Category " + existingAssetCategory.getName() +
" could not be updated in the global scope because"
+ " the user doesn't have enough permissions.");
}
}
After Change
assetVocabularyId, properties, serviceContext);
}
else {
StringBundler sb = new StringBundler(4);
sb.append("Category ");
sb.append(existingAssetCategory.getName());
sb.append(" could not be updated in the Global scope ");
sb.append("because the user does not have permissions.");
_log.error(sb.toString());
}
}